From: Jonathan Lebon Date: Wed, 16 Aug 2017 13:10:39 +0000 (-0400) Subject: ot-main.c: fix signal callback signature X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~33^2~7 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=76fc1ba4764c4e91349efffa4f70b9fc8a1150e9;p=ostree.git ot-main.c: fix signal callback signature Signal callbacks take a void* as their final parameter, which we don't use in this case. Closes: #1082 Approved by: cgwalters --- diff --git a/src/ostree/ot-main.c b/src/ostree/ot-main.c index 81d10b98..4d47985b 100644 --- a/src/ostree/ot-main.c +++ b/src/ostree/ot-main.c @@ -360,7 +360,8 @@ ostree_option_context_parse (GOptionContext *context, static void on_sysroot_journal_msg (OstreeSysroot *sysroot, - const char *msg) + const char *msg, + void *dummy) { g_print ("%s\n", msg); }